home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-03-09 | 858 b | 19 lines | [TEXT/MPS ] |
- /* These are the new Dialog Manager calls described in Tech note #304 */
-
- pascal OSErr GetStdFilterProc(ModalFilterProcPtr *theProc )
- = { 0x303C, 0x0203, 0xAA68 };
-
- /* Indicates to the dialog manager which item is default. Will then alias the return key */
- /* to this item, and also bold border it for you (yaaaaa!) */
- pascal OSErr SetDialogDefaultItem(DialogPtr theDialog, short newItem)
- = { 0x303C, 0x0304, 0xAA68 };
-
- /* Indicates which item should be aliased to escape or Command - . */
- pascal OSErr SetDialogCancelItem(DialogPtr theDialog, short newItem)
- = { 0x303C, 0x0305, 0xAA68 };
-
- /* Tells the dialog manager that there is an edit line in this dialog, and */
- /* it should track and change to an I-Beam cursor when over the edit line */
- pascal OSErr SetDialogTracksCursor(DialogPtr theDialog, Boolean tracks)
- = { 0x303C, 0x0306, 0xAA68 };
-